home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-26 | 444 b | 24 lines | [TEXT/CWIE] |
-
- // mail <chelly@eden.com> or surf http://www.eden.com/~chelly for feedback
- // free source code - do whatever you like with it
-
- // common interface base class for resource access classes
- // nothing special in the implementation
-
- #ifndef resfile_H
- #define resfile_H
-
- #include "common.h"
-
- class resfile {
- public:
-
- virtual ~resfile();
-
- virtual void* get_resource( long type, int id ) = 0;
- static void release_resource( void* );
- };
-
- #endif
-
-